home *** CD-ROM | disk | FTP | other *** search
- global gINLastLine, gINCurrLine
-
- on mouseDown
- if the doubleClick and (the mouseLine <> -1) then
- put "Duck"
- dontPassEvent()
- endPopup()
- exit
- end if
- set gINLastLine to -1
- set mLine to the mouseLine
- if mLine <> -1 then
- set executeOnce to 0
- repeat while the stillDown or (executeOnce = 0)
- set mLine to the mouseLine
- if (mLine <> gINLastLine) and (mLine <> -1) then
- set the foreColor of line gINLastLine of field "Users List" to 251
- set the foreColor of line mLine of field "Users List" to 250
- set gINLastLine to mLine
- set executeOnce to 1
- end if
- end repeat
- set gINCurrLine to gINLastLine
- else
- return
- end if
- endPopup()
- end
-